home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gspath.h < prev    next >
C/C++ Source or Header  |  1996-07-07  |  3KB  |  73 lines

  1. /* Copyright (C) 1989, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gspath.h */
  20. /* Client interface to path manipulation facilities */
  21. /* Requires gsstate.h */
  22. #include "gspenum.h"
  23.  
  24. /* Path constructors */
  25. int    gs_newpath(P1(gs_state *)),
  26.     gs_moveto(P3(gs_state *, floatp, floatp)),
  27.     gs_rmoveto(P3(gs_state *, floatp, floatp)),
  28.     gs_lineto(P3(gs_state *, floatp, floatp)),
  29.     gs_rlineto(P3(gs_state *, floatp, floatp)),
  30.     gs_arc(P6(gs_state *, floatp, floatp, floatp, floatp, floatp)),
  31.     gs_arcn(P6(gs_state *, floatp, floatp, floatp, floatp, floatp)),
  32. /*
  33.  * Because of an obscure bug in the IBM RS/6000 compiler, one (but not both)
  34.  * bool argument(s) for gs_arc_add must come before the floatp arguments.
  35.  */
  36.     gs_arc_add(P8(gs_state *, bool, floatp, floatp, floatp, floatp, floatp, bool)),
  37.     gs_arcto(P7(gs_state *, floatp, floatp, floatp, floatp, floatp, float [4])),
  38.     gs_curveto(P7(gs_state *, floatp, floatp, floatp, floatp, floatp, floatp)),
  39.     gs_rcurveto(P7(gs_state *, floatp, floatp, floatp, floatp, floatp, floatp)),
  40.     gs_closepath(P1(gs_state *));
  41.  
  42. /* Add the current path to the path in the previous graphics state. */
  43. int    gs_upmergepath(P1(gs_state *));
  44.  
  45. /* Path accessors and transformers */
  46. int    gs_currentpoint(P2(const gs_state *, gs_point *)),
  47.     gs_upathbbox(P3(gs_state *, gs_rect *, bool)),
  48.     gs_dashpath(P1(gs_state *)),
  49.     gs_flattenpath(P1(gs_state *)),
  50.     gs_reversepath(P1(gs_state *)),
  51.     gs_strokepath(P1(gs_state *));
  52. /* The extra argument for gs_upathbbox controls whether to include */
  53. /* a trailing moveto in the bounding box. */
  54. #define gs_pathbbox(pgs, prect)\
  55.   gs_upathbbox(pgs, prect, false)
  56.  
  57. /* Path enumeration */
  58.  
  59. /* This interface makes a copy of the path. */
  60. gs_path_enum *
  61.     gs_path_enum_alloc(P2(gs_memory_t *, client_name_t));
  62. int    gs_path_enum_init(P2(gs_path_enum *, const gs_state *));
  63. int    gs_path_enum_next(P2(gs_path_enum *, gs_point [3])); /* 0 when done */
  64. void    gs_path_enum_cleanup(P1(gs_path_enum *));
  65.  
  66. /* Clipping */
  67. int    gs_clippath(P1(gs_state *)),
  68.     gs_initclip(P1(gs_state *)),
  69.     gs_clip(P1(gs_state *)),
  70.     gs_eoclip(P1(gs_state *));
  71. int    gs_setclipoutside(P2(gs_state *, bool));
  72. bool    gs_currentclipoutside(P1(const gs_state *));
  73.